home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlb20 / lib / mknod.c < prev    next >
C/C++ Source or Header  |  1991-10-21  |  160b  |  13 lines

  1. /* fake mknod -- this always fails */
  2.  
  3. #include <errno.h>
  4.  
  5. int
  6. mknod(path, mode, dev)
  7.     char *path;
  8.     int mode, dev;
  9. {
  10.     errno = EINVAL;
  11.     return -1;
  12. }
  13.